/* CONTENEDOR GENERAL */
#wover-tabla-contenedor {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #d9e1e7;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px 0;
}

/* CABECERA */
#wover-tabla-cabecera {
    background: linear-gradient(135deg, #1f3c88, #2952a3);
    padding: 12px 16px;
    border-bottom: 1px solid #d9e1e7;
}

#wover-tabla-titulo {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* SCROLL */
#wover-tabla-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 420px;
}

/* TABLA */
#wover-tabla {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    table-layout: auto;
    background: #ffffff;
}

/* CABECERA TABLA */
#wover-tabla thead th {
    position: sticky;
    top: 0;
    background: #f4f7fa;
    color: #243447;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 12px;
    border-bottom: 2px solid #d9e1e7;
    border-right: 1px solid #e8edf2;
    text-align: left;
    white-space: nowrap;
    z-index: 2;
}

#wover-tabla thead th:last-child {
    border-right: none;
}

/* CELDAS */
#wover-tabla tbody td {
    padding: 10px 12px;
    font-size: 13px;
    color: #2f3b4a;
    border-bottom: 1px solid #e8edf2;
    border-right: 1px solid #f1f4f7;
    vertical-align: middle;
}

#wover-tabla tbody td:last-child {
    border-right: none;
}

/* FILAS */
.wover-fila:nth-child(even) {
    background: #fafcff;
}

.wover-fila:hover {
    background: #eef5ff;
    transition: background 0.2s ease-in-out;
}

/* COLUMNA ID */
.wover-col-id,
.wover-celda-id {
    width: 60px;
    text-align: center;
    font-weight: 700;
    color: #1f3c88;
}

/* COLUMNA VERSION */
.wover-col-version,
.wover-celda-version {
    min-width: 120px;
    font-weight: 600;
}

/* COLUMNA PRODUCTO */
.wover-col-producto,
.wover-celda-producto {
    min-width: 160px;
}

/* COLUMNA BITACORA */
.wover-col-bitacora,
.wover-celda-bitacora {
    min-width: 220px;
}

/* COLUMNAS FECHAS */
.wover-col-fecha,
.wover-celda-fecha {
    min-width: 120px;
    white-space: nowrap;
}

/* FILA VACÍA */
#wover-fila-vacia td {
    text-align: center;
    padding: 22px;
    font-size: 14px;
    color: #6b7785;
    background: #fbfcfe;
}